home *** CD-ROM | disk | FTP | other *** search
- #ifndef __BLOCK_WRITE_H_
- #define __BLOCK_WRITE_H_
-
- #include "write.h"
- #include "blk.h"
-
- class BlockWrite : public Block
- {
- public:
- Write* write;
-
- BlockWrite(rect coord, char* fname = "", char* fileName = "work.txt",
- char* h = "", int s = 0,
- int res = 0, BORDERS b_type = SHOW_BORDER,
- BORDERS write_border = SHOW_BORDER,
- BORDERS hdr_b_type = SHOW_BORDER,
- int pat = 0, int write_pat = 0,
- int hdr_pat = 0, int elem_pat = 0);
-
- virtual void rearrange();
- virtual void hide();
- };
-
- #endif __BLOCK_WRITE_H_